home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / tm4dhost.zip / TM4DINFO.LST < prev    next >
File List  |  1993-11-24  |  3KB  |  50 lines

  1. This is not just a New Telemate Enhanced Host Script.
  2. It is one that can be easyly maintained by "You". You don't need to be a
  3. Communication Whiz to understand just what is going on in this script.
  4.  
  5. This One feature should be a Welcomed Option now a Days. When you want
  6. to add another "Bulliton" or "Menu" to your script for that
  7. "Special Person in Your Live" to see when "She or He" calls.
  8.  
  9. You won't need to drag out the script manual, dust it off, to do it.
  10. You just do it. Its that simple now.
  11.  
  12. To add another "Notice" to the script. Open up "Tm4dhost.scr" in your
  13. favorite "Text Editor". And place this command at the place you wish your
  14. Notice to be.
  15. "clear text"
  16. "ShowNote (bullitin to be seen)" Its that simple.
  17. Like this: ShowNote NewPhon.hst
  18. would display New Bulliton Board Phone Nunbers at logon.
  19. Either in Color or Text. What ever the caller wishes at logon time.
  20.  
  21. ShowNote is a procedure that contains all nessasary commands for displaying
  22. any "TEXT" or "ANSI" file.
  23.  
  24. =========================================================================
  25.  
  26. SHOWSCREEN PROCEDURE:
  27. ---------------------
  28. This is the contents of "ShowScreen" and How it saves your screen for you.
  29.  
  30. Procedure ShowScreen string tmscreen ; tmscreen is are screen
  31. string file                          ; we want to use the string "File" in our
  32. file = HOSTDIR                       ; procedure.
  33. concat file,TmScreen                 ; But first we must tell telemate about it.
  34. clear text                           ; FILE to save to must be established.
  35. TypeFile file,FALSE                  ; concat contents of "File" with "Tmscreen"
  36. concat file,Tmscreen                 ; clear text clears the screen like an
  37. Endproc                              ; eraser
  38.                                      ; Display contents of "Tmscreen on to the
  39.                                      ; screen", concat the contents "File",
  40.                                      ; which at this time is a clear screen,
  41.                                      ; with "Tmscreen", which would be
  42.                                      ; your newly displayed "MENU".
  43.  
  44. Its like laying two Identical Pictures on top of each other and then Pulling
  45. one away, this would be the clear text command. What you are now seeing is the
  46. picture underneath. But because its Identical to the first one, and the
  47. action that is taken happens so fast.
  48. We now have are Menu back on the screen awaiting orders from Headquarters.
  49. ==========================================================================
  50.